home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / stralloc_cats.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  150 b   |  11 lines

  1. #include "byte.h"
  2. #include "str.h"
  3. #include "stralloc.h"
  4.  
  5. int stralloc_cats(sa,s)
  6. stralloc *sa;
  7. char *s;
  8. {
  9.   return stralloc_catb(sa,s,str_len(s));
  10. }
  11.